home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 15: Shareware / PC Actual CDT 15.iso / files / Windows_95_98 / Programacion / ActiveX / NCTWavPlayer.exe / Main / TestDevice.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-06  |  1.5 KB  |  62 lines

  1. #if !defined(AFX_TESTDEVICE_H__37DFB304_CA09_11D3_996E_444553540000__INCLUDED_)
  2. #define AFX_TESTDEVICE_H__37DFB304_CA09_11D3_996E_444553540000__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // TestDevice.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CTestDevice dialog
  12. #include "nctwavplayer.h"
  13.  
  14. class CTestDevice : public CPropertyPage
  15. {
  16.     DECLARE_DYNCREATE(CTestDevice)
  17.  
  18. // Construction
  19. public:
  20.     CTestDevice();
  21.     ~CTestDevice();
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CTestDevice)
  25.     enum { IDD = IDD_PROPPAGE_IODEVICE };
  26.     CButton    m_fplay;
  27.     CButton    m_frecord;
  28.     CComboBox    m_play;
  29.     CComboBox    m_record;
  30.     //}}AFX_DATA
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generate virtual function overrides
  35.     //{{AFX_VIRTUAL(CTestDevice)
  36.     public:
  37.     virtual void OnOK();
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. protected:
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CTestDevice)
  46.     virtual BOOL OnInitDialog();
  47.     afx_msg void OnSelchangeCombo1();
  48.     afx_msg void OnSelchangeCombo2();
  49.     afx_msg void OnCheck1();
  50.     afx_msg void OnCheck2();
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53.  
  54. private:
  55.     CNCTWavPlayer*    m_player;
  56. };
  57.  
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60.  
  61. #endif // !defined(AFX_TESTDEVICE_H__37DFB304_CA09_11D3_996E_444553540000__INCLUDED_)
  62.